Fractals

Table of Contents

1. Fractal circles

This QBasic program generates a visually captivating spiral fractal composed of circles. It employs a recursive algorithm to create intricate patterns that can inspire those interested in fractal geometry, recursive programming, and graphical design.

fractal%20circles.png

Color and Depth
The color of each circle alternates based on the recursion depth, adding visual complexity to the fractal.
Termination Condition
The recursion terminates when the size of the circles becomes too small, ensuring the program doesn't run indefinitely.

Source code

2. Fractal circles animated

This QBasic program creates an animated fractal composed of circles, demonstrating an engaging visual effect. The program uses a timer system to control the animation's progression.

Source code

3. Fractal of squares

This QBasic program generates and displays a fractal pattern composed of squares.

fractal%20squares,%201.png

fractal%20squares,%202.png

4. Fractal of squares animated

This QBasic program generates an animated fractal pattern composed of size-shifting squares. The animation creates a visually captivating display by continuously redrawing the fractal with varying parameters, resulting in a dynamic and ever-changing geometric pattern.

Source code

5. Fractal of trees

QBasic program that generates a visually appealing fractal tree animation. The program creates a dynamic fractal pattern that resembles a tree, with branches that grow and change over time.

Source code

Created: 2025-10-22 Wed 03:42

Validate